c# get count from unknown list

52

c# get count from unknown list -

using System.Collections;

List<int> list = new List<int>(Enumerable.Range(0, 100));

ICollection collection = list as ICollection;
if(collection != null)
{
  Console.WriteLine(collection.Count);
}

Comments

Submit
0 Comments